html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  background-color: #F4E1E0; /* Blush */
  color: #0E1627;           /* Navy */
}

main {
  flex: 1;
}

header {
  padding: 40px 20px;
  background-color: #0E1627; /* Navy */
  text-align: center;
}

.logo img {
  width: 80px;
  margin-bottom: 10px;
}

nav {
  margin-top: 10px;
}

.navigation {
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
  font-family: Didot, serif;
  background: transparent;
  padding: 0;
}

.navigation a {
  padding: 12px 20px;
  color: #F4E1E0; /* Blush */
  text-decoration: none;
  border-radius: 20px;
  transition: background 0.3s;
}

.navigation a:hover,
#akt_tab {
  background-color: #BD8E89; /* Mauve */
  color: #0E1627;            /* Navy */
}

section {
  padding: 60px 20px;
  text-align: center;
}

.fade-in {
  opacity: 1;               
  transform: none;
  transition: all 0.6s ease-out;
}

.animation {
  position: relative;
  height: 25em;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #E5C5C1; /* Pink */
}

.slideshow {
  display: flex;
  gap: 15px;
  animation: slideShow 95s linear infinite;
  width: max-content;
}

.slideshow img {
  width: 250px;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  opacity: 0.8;
  transition: transform 0.5s;
  position: relative;
  z-index: 1;
}

.slideshow img:hover {
  transform: scale(1.05);
  opacity: 1;
  z-index: 2;
}

@keyframes slideShow {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.überlagerung-text {
  position: absolute;
  z-index: 10;
  color: #0E1627; /* Navy */
  font-family: Didot, serif;
  text-align: center;
  text-shadow: 4px 4px 6px #7f6269;
}

.überlagerung-text h1 {
  font-size: 3rem;
  margin: 0;
}

.überlagerung-text a.button {
  margin-top: 20px;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 20px;
  background-color: rgba(14, 22, 39, 0.7); 
  color: #F4E1E0; /* Blush */
  text-decoration: none;
  transition: background 0.3s;
}

.überlagerung-text a.button:hover {
  background: #BD8E89; /* Mauve */
  color: #FFF;
}

.feel-good-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: 'Didot', serif;
  color: #0E1627;
  text-align: center;
}

.feel-good-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #7F6269; /* Prune */
  text-transform: uppercase;
  letter-spacing: 2px;
}

.intro-text {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #BD8E89; /* Mauve */
}

.photo-grid {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.photo-card {
  position: relative;
  width: 280px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(127, 98, 105, 0.3);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(127, 98, 105, 0.5);
}

.photo-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.caption {
  background-color: #BD8E89; /* Mauve */
  color: #F4E1E0; /* Blush */
  font-size: 1rem;
  padding: 12px 15px;
  font-weight: 600;
}

.tagline {
  background: #7F6269; /* Prune */
  color: #F4E1E0;      /* Blush */
  font-family: Didot, serif;
}

.tagline .quote {
  font-size: 2rem;
  margin-bottom: 10px;
  font-style: italic;
}

.site-footer {
  background-color: #0E1627; /* Navy */
  color: #F4E1E0;            /* Blush */
  text-align: center;
  padding: 60px 20px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.footer-logo img {
  width: 80px;
}

.footer-logo p {
  margin: 10px 0 0;
  color: #E5C5C1; /* Pink */
  font-size: 1rem;
}

.footer-info p {
  margin: 5px 0;
  font-size: 0.95rem;
}

.footer-info a {
  color: #BD8E89; /* Mauve */
  text-decoration: none;
  transition: color 0.3s;
}

.footer-info a:hover {
  color: #E5C5C1; /* Pink */
}

.footer-bottom {
  border-top: 1px solid #7F6269; /* Prune */
  padding-top: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: #E5C5C1; /* Pink */
}
.fade-in {
    opacity: 0;
    transform: translateY(1.875em);
    transition: all 0.7s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

